@font-face {
    font-family: 'Software-Company-Co.,-Ltd.-Font-Bold';
    src: url(../../../cdn.softwarecompany.static.com/fonts/Sonyo-Bold) format('truetype');
}
  
body {
    margin: 0px;
    padding: 0px;
    font-family: 'Software-Company-Co.,-Ltd.-Font-Bold';
}
  
.body-content {
    height: 100vh;
}
  
.body-content .logo-section {
    display: flex;
    flex-direction: row;
    align-content: center;
    align-items: center;
    margin-left: auto;
}
  
.body-content .logo-section img {
    height: 180px;
    width: 180px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 10%;
    margin-bottom: 0px;
}
  
.body-content p {
    font-size: 22px;
    color: #00a2e8;
    user-select: none;
    text-align: center;
}
  
.loader-section {
    width: 48px;
    height: 48px;
    border: 3px solid #FFF;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    -webkit-animation: rotation 1s linear infinite;
    animation: rotation 1s linear infinite;
}
  
.loader {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.2); /* Light circle border */
    border-top: 3px solid #00a2e8; /* Orange progress color */
    animation: spin 1s linear infinite;
    margin-left: auto;
    margin-right: auto;
    margin-top: 40px;
    margin-bottom: 40px;
}
  
@keyframes spin {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
}
  